home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 3 / Amiga Format CD03 (1996-07-04)(Future Publishing)(GB)(Track 1 of 6)[!][issue 1996-08].iso / comms / netsoftware / archie38_1.lha / archie-1.4 / makefile.nfs < prev    next >
Makefile  |  1995-01-04  |  664b  |  31 lines

  1. #
  2. # Last changed: 11/20/91, v1.2
  3. #
  4. # Makefile for the minimal build for an archie Prospero client.
  5. #.INCLUDE ../../../builtins
  6.  
  7. OBJS    = aquery.obj     archie.obj       atalloc.obj      dirsend.obj  \
  8.       get_paut.obj  get_vdir.obj     perrmesg.obj     procquer.obj \
  9.       ptalloc.obj    regex.obj        stcopy.obj       support.obj \
  10.       vlalloc.obj    vl_comp.obj
  11. HDRS    = archie.h      pmachine.h      pcompat.h
  12.  
  13. DEFINES = -DDEBUG -DPCNFS
  14.  
  15. CFLAGS  =  -AL -Gs -Zi -W3 -I. $(DEFINES)
  16.  
  17. EXE     = archie.exe
  18.  
  19. all: $(EXE)
  20.  
  21. $(OBJS): $(HDRS)
  22.  
  23. $(EXE): $(OBJS) Makefile.nfs pc-archie.nfs
  24.     link @pc-archie.nfs
  25.     exepack archie.unp archie.exe
  26.  
  27. clean:
  28.     del *.obj
  29.     del *.exe
  30.  
  31.